home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / compiler / test.c < prev    next >
Text File  |  1980-01-04  |  113b  |  17 lines

  1. main ()
  2. {
  3.     register int a;
  4.     auto int b;
  5.  
  6.     a = 0;
  7.     b = 1;
  8.     subr (a);
  9. }
  10.  
  11. subr (a)
  12. int a;
  13. {
  14.     a *= 2;
  15.     return (a);
  16. }
  17.